home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #11 / Amiga Plus CD - 2004 - No. 11.iso / AmiSoft / Dev / misc / temgen.lha / Temgen / tg-0.11 / output.h < prev    next >
C/C++ Source or Header  |  2002-12-18  |  511b  |  14 lines

  1. #ifndef __output_h_
  2. #define __output_h_
  3.  
  4. void setout( int name, int embed );   /* change output destination to given file or embed point */
  5. void writeout( const char* );    /* output string                           */
  6. void embed( int );               /* declare embed point in current output   */
  7. void setemb( int );              /* change output to given embed            */ 
  8. int  closeout( void );           /* flush and close all output              */
  9.  
  10. void push_out( void );
  11. void pop_out( void );
  12.  
  13. #endif
  14.